A renewal is re-activating a membership for a unit that is inactive. The process is very similar to the Membership Join process.

All of the steps are the same as described in the Membership Join Tutorial, except in Step 1, you call the Start renewal process api call and pass in the unit_id to renew.

This creates a cart for building up changes to the membership. You will use the cart_id in subsequent calls as described in the Membership Join Tutorial.

Request:

POST /v3/membership/renewal
{
  "membership_type_id": "MT12345",
  "unit_id": "11111111"
}

Response:

{
  "cart_id": "2b8a53f2-d482-40f2-a83a-ee5c4d8d8d94",
  "links": [
    {
      "rel": "review",
      "href": "/v3/membership/2b8a53f2-d482-40f2-a83a-ee5c4d8d8d94"
    }
  ]
}

Comments